home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gdevsvga.c < prev    next >
C/C++ Source or Header  |  1996-09-18  |  25KB  |  911 lines

  1. /* Copyright (C) 1991, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevsvga.c */
  20. /* SuperVGA display drivers */
  21. #include "memory_.h"
  22. #include "gconfigv.h"            /* for USE_ASM */
  23. #include "gx.h"
  24. #include "gserrors.h"
  25. #include "gxarith.h"            /* for ...log2 */
  26. #include "gxdevice.h"
  27. #include "gdevpccm.h"
  28. #include "gdevpcfb.h"
  29. #include "gdevsvga.h"
  30. #include "gsparam.h"
  31.  
  32. /* The color map for dynamically assignable colors. */
  33. #define first_dc_index 64
  34. private int next_dc_index;
  35. #define dc_hash_size 293    /* prime, >num_dc */
  36. typedef struct { ushort rgb, index; } dc_entry;
  37. private dc_entry dynamic_colors[dc_hash_size + 1];
  38. #define num_colors 255
  39.  
  40. /* Macro for casting gx_device argument */
  41. #define fb_dev ((gx_device_svga *)dev)
  42.  
  43. /* Procedure records */
  44. #define svga_procs(open) {\
  45.     open, NULL /*get_initial_matrix*/,\
  46.     NULL /*sync_output*/, NULL /*output_page*/, svga_close,\
  47.     svga_map_rgb_color, svga_map_color_rgb,\
  48.     svga_fill_rectangle, NULL /*tile_rectangle*/,\
  49.     svga_copy_mono, svga_copy_color, NULL /*draw_line*/,\
  50.     svga_get_bits, NULL /*get_params*/, svga_put_params,\
  51.     NULL /*map_cmyk_color*/, NULL /*get_xfont_procs*/,\
  52.     NULL /*get_xfont_device*/, NULL /*map_rgb_alpha_color*/,\
  53.     NULL /*get_page_device*/, svga_get_alpha_bits, svga_copy_alpha\
  54. }
  55.  
  56. /* Save the controller mode */
  57. private int svga_save_mode = -1;
  58.  
  59. /* ------ Internal routines ------ */
  60.  
  61. #define regen 0xa000
  62.  
  63. /* Construct a pointer for writing a pixel. */
  64. /* Assume 64K pages, 64K granularity. */
  65. /* We know that y is within bounds. */
  66. #define set_pixel_ptr(ptr, fbdev, x, y, wnum)\
  67. {    ulong index = (ulong)(y) * fbdev->raster + (uint)(x);\
  68.     if ( (uint)(index >> 16) != fbdev->current_page )\
  69.        {    (*fbdev->set_page)(fbdev, (fbdev->current_page = index >> 16), wnum);\
  70.        }\
  71.     ptr = (fb_ptr)MK_PTR(regen, (ushort)index);\
  72. }
  73. #define set_pixel_write_ptr(ptr, fbdev, x, y)\
  74.   set_pixel_ptr(ptr, fbdev, x, y, fbdev->wnum_write)
  75. #define set_pixel_read_ptr(ptr, fbdev, x, y)\
  76.   set_pixel_ptr(ptr, fbdev, x, y, fbdev->wnum_read)
  77.  
  78. /* Find the graphics mode for a desired width and height. */
  79. /* Set the mode in the device structure and return 0, */
  80. /* or return an error code. */
  81. int
  82. svga_find_mode(gx_device *dev, const mode_info _ds *mip)
  83. {    for ( ; ; mip++ )
  84.     {    if ( mip->width >= fb_dev->width &&
  85.              mip->height >= fb_dev->height ||
  86.              mip[1].mode < 0
  87.            )
  88.         {    fb_dev->mode = mip;
  89.             gx_device_adjust_resolution(dev, mip->width, mip->height, 1);
  90.             fb_dev->raster = fb_dev->width;
  91.             return 0;
  92.         }
  93.     }
  94.     return_error(gs_error_rangecheck);
  95. }
  96.  
  97. /* Set the index for writing into the color DAC. */
  98. #define svga_dac_set_write_index(i) outportb(0x3c8, i)
  99.  
  100. /* Write 6-bit R,G,B values into the color DAC. */
  101. #define svga_dac_write(r, g, b)\
  102.   (outportb(0x3c9, r), outportb(0x3c9, g), outportb(0x3c9, b))
  103.  
  104. /* ------ Common procedures ------ */
  105.  
  106. #define cv_bits(v,n) (v >> (gx_color_value_bits - n))
  107.  
  108. /* Initialize the dynamic color table, if any. */
  109. void
  110. svga_init_colors(gx_device *dev)
  111. {    if ( fb_dev->fixed_colors )
  112.       next_dc_index = num_colors;
  113.     else
  114.       {    memset(dynamic_colors, 0,
  115.                (dc_hash_size + 1) * sizeof(dc_entry));
  116.         next_dc_index = first_dc_index;
  117.       }
  118. }
  119.  
  120. /* Load the color DAC with the predefined colors. */
  121. private void
  122. svga_load_colors(gx_device *dev)
  123. {    int ci;
  124.     svga_dac_set_write_index(0);
  125.     if ( fb_dev->fixed_colors )
  126.       for ( ci = 0; ci < num_colors; ci++ )
  127.     {    gx_color_value rgb[3];
  128.         pc_8bit_map_color_rgb(dev, (gx_color_index)ci, rgb);
  129.         svga_dac_write(cv_bits(rgb[0], 6), cv_bits(rgb[1], 6),
  130.                    cv_bits(rgb[2], 6));
  131.     }
  132.     else
  133.       for ( ci = 0; ci < 64; ci++ )
  134.     {    static const byte c2[10] =
  135.            { 0, 42, 0, 0, 0, 0, 0, 0, 21, 63 };
  136.         svga_dac_write(c2[(ci >> 2) & 9], c2[(ci >> 1) & 9],
  137.                    c2[ci & 9]);
  138.     }
  139. }
  140.  
  141. /* Initialize the device structure and the DACs. */
  142. int
  143. svga_open(gx_device *dev)
  144. {    fb_dev->x_pixels_per_inch =
  145.       fb_dev->y_pixels_per_inch =
  146.         fb_dev->height / PAGE_HEIGHT_INCHES;
  147.     /* Set the display mode. */
  148.     if ( svga_save_mode < 0 )
  149.         svga_save_mode = (*fb_dev->get_mode)();
  150.     (*fb_dev->set_mode)(fb_dev->mode->mode);
  151.     svga_init_colors(dev);
  152.     svga_load_colors(dev);
  153.     fb_dev->current_page = -1;
  154.     return 0;
  155. }
  156.  
  157. /* Close the device; reinitialize the display for text mode. */
  158. int
  159. svga_close(gx_device *dev)
  160. {    if ( svga_save_mode >= 0 )
  161.         (*fb_dev->set_mode)(svga_save_mode);
  162.     svga_save_mode = -1;
  163.     return 0;
  164. }
  165.  
  166. /* Map a r-g-b color to a palette index. */
  167. /* The first 64 entries of the color map are set */
  168. /* for compatibility with the older display modes: */
  169. /* these are indexed as 0.0.R0.G0.B0.R1.G1.B1. */
  170. gx_color_index
  171. svga_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  172.   gx_color_value b)
  173. {    ushort rgb;
  174.     if ( fb_dev->fixed_colors )
  175.       {    gx_color_index ci = pc_8bit_map_rgb_color(dev, r, g, b);
  176.         /* Here is where we should permute the index to match */
  177.         /* the old color map... but we don't yet. */
  178.         return ci;
  179.       }
  180.     {    ushort r5 = cv_bits(r, 5), g5 = cv_bits(g, 5),
  181.           b5 = cv_bits(b, 5);
  182.         static const byte cube_bits[32] =
  183.           {    0, 128, 128, 128, 128, 128, 128, 128, 128, 128,
  184.             8, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
  185.             1, 128, 128, 128, 128, 128, 128, 128, 128, 128,
  186.             9
  187.           };
  188.         uint cx = ((uint)cube_bits[r5] << 2) +
  189.           ((uint)cube_bits[g5] << 1) +
  190.           (uint)cube_bits[b5];
  191.         /* Check for a color on the cube. */
  192.         if ( cx < 64 ) return (gx_color_index)cx;
  193.         /* Not on the cube, check the dynamic color table. */
  194.         rgb = (r5 << 10) + (g5 << 5) + b5;
  195.     }
  196.     {    register dc_entry _ds *pdc;
  197.         for ( pdc = &dynamic_colors[rgb % dc_hash_size];
  198.               pdc->rgb != 0; pdc++
  199.             )
  200.           if ( pdc->rgb == rgb )
  201.             return (gx_color_index)(pdc->index);
  202.         if ( pdc == &dynamic_colors[dc_hash_size] )
  203.           {    /* Wraparound */
  204.             for ( pdc = &dynamic_colors[0]; pdc->rgb != 0; pdc++ )
  205.               if ( pdc->rgb == rgb )
  206.                 return (gx_color_index)(pdc->index);
  207.           }
  208.         if ( next_dc_index == num_colors )
  209.           {    /* No space left, report failure. */
  210.             return gx_no_color_index;
  211.           }
  212.         /* Not on the cube, and not in the dynamic table. */
  213.         /* Put in the dynamic table if space available. */
  214.         {    int i = next_dc_index++;
  215.             pdc->rgb = rgb;
  216.             pdc->index = i;
  217.             svga_dac_set_write_index(i);
  218.             svga_dac_write(cv_bits(r, 6), cv_bits(g, 6),
  219.                        cv_bits(b, 6));
  220.             return (gx_color_index)i;
  221.         }
  222.     }
  223. }
  224.  
  225. /* Map a color code to r-g-b. */
  226. /* This routine must invert the transformation of the one above. */
  227. /* Since this is practically never used, we just read the DAC. */
  228. int
  229. svga_map_color_rgb(gx_device *dev, gx_color_index color,
  230.   gx_color_value prgb[3])
  231. {    uint cval;
  232.     outportb(0x3c7, (byte)color);
  233. #define dacin() (cval = inportb(0x3c9) >> 1,\
  234.   ((cval << 11) + (cval << 6) + (cval << 1) + (cval >> 4)) >>\
  235.    (16 - gx_color_value_bits))
  236.     prgb[0] = dacin();
  237.     prgb[1] = dacin();
  238.     prgb[2] = dacin();
  239. #undef dacin
  240.     return 0;
  241. }
  242.  
  243. /* Fill a rectangle. */
  244. int
  245. svga_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  246.   gx_color_index color)
  247. {    uint raster = fb_dev->raster;
  248.     ushort limit = (ushort)-raster;
  249.     int yi;
  250.     fb_ptr ptr;
  251.     fit_fill(dev, x, y, w, h);
  252.     set_pixel_write_ptr(ptr, fb_dev, x, y);
  253.     /* Most fills are very small and don't cross a page boundary. */
  254.     yi = h;
  255.     switch ( w )
  256.        {
  257.     case 0: return 0;        /* no-op */
  258.     case 1:
  259.         while ( --yi >= 0 && PTR_OFF(ptr) < limit )
  260.             ptr[0] = (byte)color,
  261.             ptr += raster;
  262.         if ( !++yi ) return 0;
  263.         break;
  264.     case 2:
  265.         while ( --yi >= 0 && PTR_OFF(ptr) < limit )
  266.             ptr[0] = ptr[1] = (byte)color,
  267.             ptr += raster;
  268.         if ( !++yi ) return 0;
  269.         break;
  270.     case 3:
  271.         while ( --yi >= 0 && PTR_OFF(ptr) < limit )
  272.             ptr[0] = ptr[1] = ptr[2] = (byte)color,
  273.             ptr += raster;
  274.         if ( !++yi ) return 0;
  275.         break;
  276.     case 4:
  277.         while ( --yi >= 0 && PTR_OFF(ptr) < limit )
  278.             ptr[0] = ptr[1] = ptr[2] = ptr[3] = (byte)color,
  279.             ptr += raster;
  280.         if ( !++yi ) return 0;
  281.         break;
  282.     default:
  283.         if ( w < 0 ) return 0;
  284.         /* Check for erasepage. */
  285.         if ( w == dev->width && h == dev->height &&
  286.              color < first_dc_index
  287.            )
  288.             svga_init_colors(dev);
  289.        }
  290.     while ( --yi >= 0 )
  291.        {    if ( PTR_OFF(ptr) < limit )
  292.            {    memset(ptr, (byte)color, w);
  293.             ptr += raster;
  294.            }
  295.         else if ( PTR_OFF(ptr) <= (ushort)(-w) )
  296.            {    memset(ptr, (byte)color, w);
  297.             if ( yi > 0 )
  298.                 set_pixel_write_ptr(ptr, fb_dev, x, y + h - yi);
  299.            }
  300.         else
  301.            {    uint left = (uint)0x10000 - PTR_OFF(ptr);
  302.             memset(ptr, (byte)color, left);
  303.             set_pixel_write_ptr(ptr, fb_dev, x + left, y + h - 1 - yi);
  304.             memset(ptr, (byte)color, w - left);
  305.             ptr += raster - left;
  306.            }
  307.        }
  308.     return 0;
  309. }
  310.  
  311. /* Copy a monochrome bitmap.  The colors are given explicitly. */
  312. /* Color = gx_no_color_index means transparent (no effect on the image). */
  313. int
  314. svga_copy_mono(gx_device *dev,
  315.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  316.   int x, int y, int w, int h, gx_color_index czero, gx_color_index cone)
  317. {    uint raster = fb_dev->raster;
  318.     ushort limit;
  319.     register int wi;
  320.     uint skip;
  321.     int yi;
  322.     register fb_ptr ptr = (fb_ptr)0;
  323.     const byte *srow;
  324.     uint invert;
  325.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  326.     limit = (ushort)-w;
  327.     skip = raster - w + 1;
  328.     srow = base + (sourcex >> 3);
  329. #define izero (int)czero
  330. #define ione (int)cone
  331.     if ( ione == no_color )
  332.     {    gx_color_index temp;
  333.         if ( izero == no_color ) return 0;    /* no-op */
  334.         temp = czero;
  335.         czero = cone;
  336.         cone = temp;
  337.         invert = ~0;
  338.     }
  339.     else
  340.         invert = 0;
  341.     /* Pre-filling saves us a test in the loop, */
  342.     /* and since tiling is uncommon, we come out ahead. */
  343.     if ( izero != no_color )
  344.         svga_fill_rectangle(dev, x, y, w, h, czero);
  345.     for ( yi = 0; yi < h; yi++ )
  346.        {    const byte *sptr = srow;
  347.         uint bits;
  348.         int bitno = sourcex & 7;
  349.         wi = w;
  350.         if ( PTR_OFF(ptr) <= skip )
  351.         {    set_pixel_write_ptr(ptr, fb_dev, x, y + yi);
  352.         }
  353.         else if ( PTR_OFF(ptr) > limit )
  354.         {    /* We're crossing a page boundary. */
  355.             /* This is extremely rare, so it doesn't matter */
  356.             /* how slow it is. */
  357.             int xi = (ushort)-PTR_OFF(ptr);
  358.             svga_copy_mono(dev, srow, sourcex & 7, sraster,
  359.                 gx_no_bitmap_id, x, y + yi, xi, 1,
  360.                 gx_no_color_index, cone);
  361.             set_pixel_write_ptr(ptr, fb_dev, x + xi, y + yi);
  362.             sptr = srow - (sourcex >> 3) + ((sourcex + xi) >> 3);
  363.             bitno = (sourcex + xi) & 7;
  364.             wi -= xi;
  365.         }
  366.         bits = *sptr ^ invert;
  367.         switch ( bitno )
  368.         {
  369. #define ifbit(msk)\
  370.   if ( bits & msk ) *ptr = (byte)ione;\
  371.   if ( !--wi ) break; ptr++
  372.         case 0:
  373. bit0:            ifbit(0x80);
  374.         case 1:
  375.             ifbit(0x40);
  376.         case 2:
  377.             ifbit(0x20);
  378.         case 3:
  379.             ifbit(0x10);
  380.         case 4:
  381.             ifbit(0x08);
  382.         case 5:
  383.             ifbit(0x04);
  384.         case 6:
  385.             ifbit(0x02);
  386.         case 7:
  387.             ifbit(0x01);
  388. #undef ifbit
  389.             bits = *++sptr ^ invert;
  390.             goto bit0;
  391.         }
  392.         ptr += skip;
  393.         srow += sraster;
  394.        }
  395. #undef izero
  396. #undef ione
  397.     return 0;
  398. }
  399.  
  400. /* Copy a color pixelmap.  This is just like a bitmap, */
  401. /* except that each pixel takes 8 bits instead of 1. */
  402. int
  403. svga_copy_color(gx_device *dev,
  404.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  405.   int x, int y, int w, int h)
  406. {    int xi, yi;
  407.     int skip;
  408.     const byte *sptr;
  409.     fb_ptr ptr;
  410.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  411.     skip = sraster - w;
  412.     sptr = base + sourcex;
  413.     for ( yi = y; yi - y < h; yi++ )
  414.        {    ptr = 0;
  415.         for ( xi = x; xi - x < w; xi++ )
  416.            {    if ( PTR_OFF(ptr) == 0 )
  417.               set_pixel_write_ptr(ptr, fb_dev, xi, yi);
  418.             *ptr++ = *sptr++;
  419.            }
  420.         sptr += skip;
  421.        }
  422.     return 0;
  423. }
  424.  
  425. /* Put parameters. */
  426. int
  427. svga_put_params(gx_device *dev, gs_param_list *plist)
  428. {    int ecode = 0;
  429.     int code;
  430.     int atext = fb_dev->alpha_text, agraphics = fb_dev->alpha_graphics;
  431.     const char _ds *param_name;
  432.  
  433.     switch ( code = param_read_int(plist, (param_name = "TextAlphaBits"), &fb_dev->alpha_text) )
  434.     {
  435.     case 0:
  436.         if ( atext == 1 || atext == 2 || atext == 4 )
  437.           break;
  438.         code = gs_error_rangecheck;
  439.     default:
  440.         ecode = code;
  441.         param_signal_error(plist, param_name, ecode);
  442.     case 1:
  443.         ;
  444.     }
  445.  
  446.     switch ( code = param_read_int(plist, (param_name = "GraphicsAlphaBits"), &fb_dev->alpha_graphics) )
  447.     {
  448.     case 0:
  449.         if ( agraphics == 1 || agraphics == 2 || agraphics == 4 )
  450.           break;
  451.         code = gs_error_rangecheck;
  452.     default:
  453.         ecode = code;
  454.         param_signal_error(plist, param_name, ecode);
  455.     case 1:
  456.         ;
  457.     }
  458.  
  459.     if ( (code = ecode) < 0 ||
  460.          (code = gx_default_put_params(dev, plist)) < 0
  461.        )
  462.       { fb_dev->alpha_text = atext;
  463.         fb_dev->alpha_graphics = agraphics;
  464.       }
  465.     return code;
  466. }
  467.  
  468. /* Read scan lines back from the frame buffer. */
  469. int
  470. svga_get_bits(gx_device *dev, int y, byte *data, byte **actual_data)
  471. {    uint bytes_per_row = dev->width;
  472.     ushort limit = (ushort)-bytes_per_row;
  473.     fb_ptr src;
  474.     if ( y < 0 || y >= dev->height )
  475.         return gs_error_rangecheck;
  476.     set_pixel_read_ptr(src, fb_dev, 0, y);
  477.     /* The logic here is similar to fill_rectangle. */
  478.     if ( PTR_OFF(src) <= limit )
  479.         memcpy(data, src, bytes_per_row);
  480.     else
  481.        {    uint left = (uint)0x10000 - PTR_OFF(src);
  482.         memcpy(data, src, left);
  483.         set_pixel_read_ptr(src, fb_dev, left, y);
  484.         memcpy(data + left, src, bytes_per_row - left);
  485.        }
  486.     if ( actual_data != 0 )
  487.         *actual_data = data;
  488.     return 0;
  489. }
  490.  
  491. /* Get the number of alpha bits. */
  492. private int
  493. svga_get_alpha_bits(gx_device *dev, graphics_object_type type)
  494. {    return (type == go_text ? fb_dev->alpha_text :
  495.         fb_dev->alpha_graphics);
  496. }
  497.  
  498. /* Copy an alpha-map to the screen. */
  499. /* Depth is 1, 2, or 4. */
  500. private int
  501. svga_copy_alpha(gx_device *dev, const byte *base, int sourcex,
  502.   int sraster, gx_bitmap_id id, int x, int y, int w, int h,
  503.   gx_color_index color, int depth)
  504. {    int xi, yi;
  505.     int skip;
  506.     const byte *sptr;
  507.     byte mask;
  508.     int ishift;
  509.     /* We fake alpha by interpreting it as saturation, i.e., */
  510.     /* alpha = 0 is white, alpha = 1 is the full color. */
  511.     byte shades[16];
  512.     gx_color_value rgb[3];
  513.     int log2_depth = depth >> 1;        /* works for 1,2,4 */
  514.     int n1 = (1 << depth) - 1;
  515.  
  516.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  517.     shades[0] = (byte)svga_map_rgb_color(dev, gx_max_color_value,
  518.                          gx_max_color_value,
  519.                          gx_max_color_value);
  520.     shades[n1] = (byte)color;
  521.     if ( n1 > 1 )
  522.       {    memset(shades + 1, 255, n1 - 1);
  523.         svga_map_color_rgb(dev, color, rgb);
  524.       }
  525.     skip = sraster - ((w * depth) >> 3);
  526.     sptr = base + (sourcex >> (3 - log2_depth));
  527.     mask = n1;
  528.     ishift = (~sourcex & (7 >> log2_depth)) << log2_depth;
  529.     for ( yi = y; yi - y < h; yi++ )
  530.        {    fb_ptr ptr = 0;
  531.         int shift = ishift;
  532.         for ( xi = x; xi - x < w; xi++, ptr++ )
  533.            {    uint a = (*sptr >> shift) & mask;
  534.             if ( PTR_OFF(ptr) == 0 )
  535.               set_pixel_write_ptr(ptr, fb_dev, xi, yi);
  536. map:            if ( a != 0 )
  537.               {    byte ci = shades[a];
  538.                 if ( ci == 255 )
  539.                   {    /* Map the color now. */
  540. #define make_shade(v, alpha, n1)\
  541.   (gx_max_color_value -\
  542.    ((ulong)(gx_max_color_value - (v)) * (alpha) / (n1)))
  543.                     gx_color_value r =
  544.                       make_shade(rgb[0], a, n1);
  545.                     gx_color_value g =
  546.                       make_shade(rgb[1], a, n1);
  547.                     gx_color_value b =
  548.                       make_shade(rgb[2], a, n1);
  549.                     gx_color_index sci =
  550.                       svga_map_rgb_color(dev, r, g, b);
  551.                     if ( sci == gx_no_color_index )
  552.                     {    a += (n1 + 1 - a) >> 1;
  553.                         goto map;
  554.                     }
  555.                     shades[a] = ci = (byte)sci;
  556.                   }
  557.                 *ptr = ci;
  558.               }
  559.             if ( shift == 0 )
  560.               shift = 8 - depth, sptr++;
  561.             else
  562.               shift -= depth;
  563.            }
  564.         sptr += skip;
  565.        }
  566.     return 0;
  567. }
  568.  
  569. /* ------ The VESA device ------ */
  570.  
  571. private dev_proc_open_device(vesa_open);
  572. private gx_device_procs vesa_procs = svga_procs(vesa_open);
  573. int vesa_get_mode(P0());
  574. void vesa_set_mode(P1(int));
  575. private void vesa_set_page(P3(gx_device_svga *, int, int));
  576. gx_device_svga far_data gs_vesa_device =
  577.     svga_device(vesa_procs, "vesa", vesa_get_mode, vesa_set_mode, vesa_set_page);
  578.  
  579. /* Define the structures for information returned by the BIOS. */
  580. #define bits_include(a, m) !(~(a) & (m))
  581. /* Information about the BIOS capabilities. */
  582. typedef struct {
  583.     byte vesa_signature[4];        /* "VESA" */
  584.     ushort vesa_version;
  585.     char *product_info;        /* product name string */
  586.     byte capabilities[4];        /* (undefined) */
  587.     ushort *mode_list;        /* supported video modes, -1 ends */
  588. } vga_bios_info;
  589. /* Information about an individual VESA mode. */
  590. typedef enum {
  591.     m_supported = 1,
  592.     m_graphics = 0x10
  593. } mode_attribute;
  594. typedef enum {
  595.     w_supported = 1,
  596.     w_readable = 2,
  597.     w_writable = 4
  598. } win_attribute;
  599. typedef struct {
  600.     ushort mode_attributes;
  601.     byte win_a_attributes;
  602.     byte win_b_attributes;
  603.     ushort win_granularity;
  604.     ushort win_size;
  605.     ushort win_a_segment;
  606.     ushort win_b_segment;
  607.     void (*win_func_ptr)(P2(int, int));
  608.     ushort bytes_per_line;
  609.         /* Optional information */
  610.     ushort x_resolution;
  611.     ushort y_resolution;
  612.     byte x_char_size;
  613.     byte y_char_size;
  614.     byte number_of_planes;
  615.     byte bits_per_pixel;
  616.     byte number_of_banks;
  617.     byte memory_model;
  618.     byte bank_size;
  619.         /* Padding to 256 bytes */
  620.     byte _padding[256-29];
  621. } vesa_info;
  622.  
  623. /* Read the device mode */
  624. int
  625. vesa_get_mode(void)
  626. {    registers regs;
  627.     regs.h.ah = 0x4f;
  628.     regs.h.al = 0x03;
  629.     int86(0x10, ®s, ®s);
  630.     return regs.rshort.bx;
  631. }
  632.  
  633. /* Set the device mode */
  634. void
  635. vesa_set_mode(int mode)
  636. {    registers regs;
  637.     regs.h.ah = 0x4f;
  638.     regs.h.al = 0x02;
  639.     regs.rshort.bx = mode;
  640.     int86(0x10, ®s, ®s);
  641. }
  642.  
  643. /* Read information about a device mode */
  644. private int
  645. vesa_get_info(int mode, vesa_info _ss *info)
  646. {    registers regs;
  647.     struct SREGS sregs;
  648.     regs.h.ah = 0x4f;
  649.     regs.h.al = 0x01;
  650.     regs.rshort.cx = mode;
  651.     segread(&sregs);
  652.     sregs.es = sregs.ss;
  653.     regs.rshort.di = PTR_OFF(info);
  654.     int86x(0x10, ®s, ®s, &sregs);
  655. #ifdef DEBUG
  656.     if ( regs.h.ah == 0 && regs.h.al == 0x4f )
  657.         dprintf8("vesa_get_info(%x): ma=%x wa=%x/%x wg=%x ws=%x wseg=%x/%x\n",
  658.              mode, info->mode_attributes,
  659.              info->win_a_attributes, info->win_b_attributes,
  660.              info->win_granularity, info->win_size,
  661.              info->win_a_segment, info->win_b_segment);
  662.     else
  663.         dprintf3("vesa_get_info(%x) failed: ah=%x al=%x\n",
  664.              mode, regs.h.ah, regs.h.al);
  665. #endif
  666.     return (regs.h.ah == 0 && regs.h.al == 0x4f ? 0 : -1);
  667. }
  668.  
  669. /* Initialize the graphics mode. */
  670. /* Shared routine to look up a VESA-compatible BIOS mode. */
  671. private int
  672. vesa_find_mode(gx_device *dev, const mode_info _ds *mode_table)
  673. {    /* Select the proper video mode */
  674.     vesa_info info;
  675.     const mode_info _ds *mip;
  676.     for ( mip = mode_table; mip->mode >= 0; mip++ )
  677.        {    if ( mip->width >= fb_dev->width &&
  678.              mip->height >= fb_dev->height &&
  679.              vesa_get_info(mip->mode, &info) >= 0 &&
  680.              bits_include(info.mode_attributes,
  681.             m_supported | m_graphics) &&
  682.              info.win_granularity <= 64 &&
  683.              (info.win_granularity & (info.win_granularity - 1)) == 0 &&
  684.              info.win_size == 64 &&
  685.              bits_include(info.win_a_attributes,
  686.             w_supported) &&
  687.              info.win_a_segment == regen
  688.            )
  689.            {    /* Make sure we can both read & write. */
  690.             /* Initialize for the default case. */
  691.             fb_dev->wnum_read = 0;
  692.             fb_dev->wnum_write = 0;
  693.             if ( bits_include(info.win_a_attributes,
  694.                 w_readable | w_writable)
  695.                )
  696.                 break;
  697.             else if ( info.win_b_segment == regen &&
  698.                 bits_include(info.win_b_attributes,
  699.                     w_supported) &&
  700.                 bits_include(info.win_a_attributes |
  701.                     info.win_b_attributes,
  702.                     w_readable | w_writable)
  703.                )
  704.                {    /* Two superimposed windows. */
  705.                 if ( !bits_include(info.win_a_attributes,
  706.                     w_writable)
  707.                    )
  708.                     fb_dev->wnum_write = 1;
  709.                 else
  710.                     fb_dev->wnum_read = 1;
  711.                }
  712.             break;
  713.            }
  714.        }
  715.     if ( mip->mode < 0 )
  716.         return_error(gs_error_rangecheck);    /* mode not available */
  717.     fb_dev->mode = mip;
  718.     gx_device_adjust_resolution(dev, mip->width, mip->height, 1);
  719.     fb_dev->info.vesa.bios_set_page = info.win_func_ptr;
  720.     fb_dev->info.vesa.pn_shift = small_exact_log2(64 / info.win_granularity);
  721.     /* Reset the raster per the VESA info. */
  722.     fb_dev->raster = info.bytes_per_line;
  723.     return 0;
  724. }
  725. private int
  726. vesa_open(gx_device *dev)
  727. {    static const mode_info mode_table[] = {
  728.        {     640,  400, 0x100    },
  729.        {     640,  480, 0x101    },
  730.        {     800,  600, 0x103    },
  731.        {    1024,  768, 0x105    },
  732.        {    1280, 1024, 0x107    },
  733.        {    -1, -1, -1    }
  734.     };
  735.     int code = vesa_find_mode(dev, mode_table);
  736.     if ( code < 0 ) return code;
  737.     return svga_open(dev);
  738. }
  739.  
  740. /* Set the current display page. */
  741. private void
  742. vesa_set_page(gx_device_svga *dev, int pn, int wnum)
  743. {
  744. #if USE_ASM
  745. extern void vesa_call_set_page(P3(void (*)(P2(int, int)), int, int));
  746.     if ( dev->info.vesa.bios_set_page != NULL )
  747.         vesa_call_set_page(dev->info.vesa.bios_set_page, pn << dev->info.vesa.pn_shift, wnum);
  748.     else
  749. #endif
  750.        {    registers regs;
  751.         regs.rshort.dx = pn << dev->info.vesa.pn_shift;
  752.         regs.h.ah = 0x4f;
  753.         regs.h.al = 5;
  754.         regs.rshort.bx = wnum;
  755.         int86(0x10, ®s, ®s);
  756.        }
  757. }
  758.  
  759. /* ------ The ATI Wonder device ------ */
  760.  
  761. private dev_proc_open_device(atiw_open);
  762. private gx_device_procs atiw_procs = svga_procs(atiw_open);
  763. private int atiw_get_mode(P0());
  764. private void atiw_set_mode(P1(int));
  765. private void atiw_set_page(P3(gx_device_svga *, int, int));
  766. gx_device_svga far_data gs_atiw_device =
  767.     svga_device(atiw_procs, "atiw", atiw_get_mode, atiw_set_mode, atiw_set_page);
  768.  
  769. /* Read the device mode */
  770. private int
  771. atiw_get_mode(void)
  772. {    registers regs;
  773.     regs.h.ah = 0xf;
  774.     int86(0x10, ®s, ®s);
  775.     return regs.h.al;
  776. }
  777.  
  778. /* Set the device mode */
  779. private void
  780. atiw_set_mode(int mode)
  781. {    registers regs;
  782.     regs.h.ah = 0;
  783.     regs.h.al = mode;
  784.     int86(0x10, ®s, ®s);
  785. }
  786.  
  787. /* Initialize the graphics mode. */
  788. private int
  789. atiw_open(gx_device *dev)
  790. {    /* Select the proper video mode */
  791.        {    static const mode_info mode_table[] = {
  792.            {     640,  400, 0x61    },
  793.            {     640,  480, 0x62    },
  794.            {     800,  600, 0x63    },
  795.            {    1024,  768, 0x64    },
  796.            {    -1, -1, -1    }
  797.         };
  798.         int code = svga_find_mode(dev, mode_table);
  799.         if ( code < 0 ) return code;    /* mode not available */
  800.         fb_dev->info.atiw.select_reg = *(int *)MK_PTR(0xc000, 0x10);
  801.         return svga_open(dev);
  802.        }
  803. }
  804.  
  805. /* Set the current display page. */
  806. private void
  807. atiw_set_page(gx_device_svga *dev, int pn, int wnum)
  808. {    int select_reg = dev->info.atiw.select_reg;
  809.     byte reg;
  810.     disable();
  811.     outportb(select_reg, 0xb2);
  812.     reg = inportb(select_reg + 1);
  813.     outportb(select_reg, 0xb2);
  814.     outportb(select_reg + 1, (reg & 0xe1) + (pn << 1));
  815.     enable();
  816. }
  817.  
  818. /* ------ The Trident device ------ */
  819.  
  820. private dev_proc_open_device(tvga_open);
  821. private gx_device_procs tvga_procs = svga_procs(tvga_open);
  822. /* We can use the atiw_get/set_mode procedures. */
  823. private void tvga_set_page(P3(gx_device_svga *, int, int));
  824. gx_device_svga far_data gs_tvga_device =
  825.     svga_device(tvga_procs, "tvga", atiw_get_mode, atiw_set_mode, tvga_set_page);
  826.  
  827. /* Initialize the graphics mode. */
  828. private int
  829. tvga_open(gx_device *dev)
  830. {    fb_dev->wnum_read = 1;
  831.     fb_dev->wnum_write = 0;
  832.     /* Select the proper video mode */
  833.        {    static const mode_info mode_table[] = {
  834.            {     640,  400, 0x5c    },
  835.            {     640,  480, 0x5d    },
  836.            {     800,  600, 0x5e    },
  837.            {     1024, 768, 0x62    },
  838.            {    -1, -1, -1    }
  839.         };
  840.         int code = svga_find_mode(dev, mode_table);
  841.         if ( code < 0 ) return code;      /* mode not available */
  842.         return svga_open(dev);
  843.        }
  844. }
  845.  
  846. /* Set the current display page. */
  847. private void
  848. tvga_set_page(gx_device_svga *dev, int pn, int wnum)
  849. {
  850.     /* new mode */
  851.     outportb(0x3c4, 0x0b);
  852.     inportb(0x3c4);
  853.  
  854.     outportb(0x3c4, 0x0e);
  855.     outportb(0x3c5, pn ^ 2);
  856. }
  857.  
  858. /* ------ The Tseng Labs ET3000/4000 devices ------ */
  859.  
  860. private dev_proc_open_device(tseng_open);
  861. private gx_device_procs tseng_procs =
  862.     svga_procs(tseng_open);
  863. /* We can use the atiw_get/set_mode procedures. */
  864. private void tseng_set_page(P3(gx_device_svga *, int, int));
  865.  
  866. /* The 256-color Tseng device */
  867. gx_device_svga far_data gs_tseng_device =
  868.     svga_device(tseng_procs, "tseng", atiw_get_mode, atiw_set_mode, tseng_set_page);
  869.  
  870. /* Initialize the graphics mode. */
  871. private int
  872. tseng_open(gx_device *dev)
  873. {    fb_dev->wnum_read = 1;
  874.     fb_dev->wnum_write = 0;
  875.     /* Select the proper video mode */
  876.        {    static const mode_info mode_table[] = {
  877.            {     640,  350, 0x2d    },
  878.            {     640,  480, 0x2e    },
  879.            {     800,  600, 0x30    },
  880.            {     1024, 768, 0x38    },
  881.            {    -1, -1, -1    }
  882.         };
  883.         int code = svga_find_mode(dev, mode_table);
  884.         volatile_fb_ptr p0 = (volatile_fb_ptr)MK_PTR(regen, 0);
  885.         if ( code < 0 ) return code;    /* mode not available */
  886.         code = svga_open(dev);
  887.         if ( code < 0 ) return 0;
  888.         /* Figure out whether we have an ET3000 or an ET4000 */
  889.         /* by playing with the segment register. */
  890.         outportb(0x3cd, 0x44);
  891.         *p0 = 4;        /* byte 0, page 4 */
  892.         outportb(0x3cd, 0x40);
  893.         *p0 = 3;        /* byte 0, page 0 */
  894.         fb_dev->info.tseng.et_model = *p0;
  895.                     /* read page 0 if ET3000, */
  896.                     /* page 4 if ET4000 */
  897.         return 0;
  898.        }
  899. }
  900.  
  901. /* Set the current display page. */
  902. private void
  903. tseng_set_page(gx_device_svga *dev, int pn, int wnum)
  904. {    /* The ET3000 has read page = 5:3, write page = 2:0; */
  905.     /* the ET4000 has read page = 7:4, write page = 3:0. */
  906.     int shift = dev->info.tseng.et_model;
  907.     int mask = (1 << shift) - 1;
  908.     if ( wnum ) pn <<= shift, mask <<= shift;
  909.     outportb(0x3cd, (inportb(0x3cd) & ~mask) + pn);
  910. }
  911.